projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da28a03
)
powerpc: P1010RDB: Rework local command to not be included in SPL
author
Tom Rini
<
[email protected]
>
Wed, 3 Jan 2018 14:13:04 +0000
(09:13 -0500)
committer
York Sun
<
[email protected]
>
Mon, 15 Jan 2018 20:44:24 +0000
(12:44 -0800)
Add a CONFIG_SPL_BUILD guard around the code for the "mux" command so
it is not included in SPL.
Cc: Qiang Zhao <
[email protected]
>
Cc: York Sun <
[email protected]
>
Signed-off-by: Tom Rini <
[email protected]
>
Reviewed-by: York Sun <
[email protected]
>
Reviewed-by: Qiang Zhao <
[email protected]
>
board/freescale/p1010rdb/p1010rdb.c
patch
|
blob
|
history
diff --git
a/board/freescale/p1010rdb/p1010rdb.c
b/board/freescale/p1010rdb/p1010rdb.c
index aa04e993c460124a23dc858960dc563e761d2e26..a5d85c228279166eff02da24e8d04cbb0400e9b2 100644
(file)
--- a/
board/freescale/p1010rdb/p1010rdb.c
+++ b/
board/freescale/p1010rdb/p1010rdb.c
@@
-550,6
+550,7
@@
int misc_init_r(void)
return 0;
}
+#ifndef CONFIG_SPL_BUILD
static int pin_mux_cmd(cmd_tbl_t *cmdtp, int flag, int argc,
char * const argv[])
{
@@
-569,3
+570,4
@@
U_BOOT_CMD(
"configure multiplexing pin for IFC/SDHC bus in runtime",
"bus_type (e.g. mux sdhc)"
);
+#endif